常用命令
CPU温度
adb shell cat /sys/class/thermal/thermal_zone7/temp
强制停止程序
adb shell am force-stop com.xxxx.android.mirror
启动程序
adb shell am start com.xxxx.xxxx/com.xxxx.PreviewActivity
卸载程序
adb uninstall com.xxx.xx
adb forward tcp:10101 tcp:10101
adb reverse tcp:9537 tcp:9537
查看CPU
adb shell getprop ro.board.platform
top -m 20 -s cpu -d 5
获取处理器信息
adb shell getprop ro.board.platform
查看相机参数
执行这个 adb 命令会打印所有默认参数和当前使用参数
adb shell dumpsys media.camera
查看某一项参数,使用过滤命令 grep(linux), windows 下可使用 findstr 来过滤
adb shell dumpsys media.camera |grep picture-size
将结果保存到文件中
adb shell dumpsys media.camera > F:\Data\桌面\camera.txt